home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / CLINIC / MOM.DPR < prev    next >
Text File  |  1997-04-28  |  160b  |  13 lines

  1. program MOM;
  2.  
  3. uses
  4.   Forms,
  5.   MOMU in 'MOMU.pas' {MOMForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TMOMForm, MOMForm);
  11.   Application.Run;
  12. end.
  13.